# The value of the constant PI with many decimal points
PI = 3.141592653589793

# Convert it to 4 decimal points, format() returns a string
PI = format(PI, '.5f')
PI = float(PI)  # convert PI which is a string to a float

print(PI)   # => 3.14159